std::priority_queue::emplace

From Cppreference

Jump to: navigation, search
template< class... Args >
void emplace( Args&&... args );
(C++11 feature)

Pushes new element to the priority queue. The element is constructed in-place, i.e. no copy or move operations are performed. The constructor of the element is called with exactly the same arguments, as supplied to the function.

Effectively calls c.emplace_back(std::forward<Args>(args)...); std::push_heap(c.begin(), c.end(), comp);

Contents

[edit] Parameters

args - arguments to forward to the constructor of the element

[edit] Return value

(none)

[edit] Complexity

[edit] See also

push
inserts element and sorts the underlying container
(public member function)
pop
removes the first element
(public member function)
Personal tools
Namespaces
Variants
Actions
Navigation
Toolbox
In other languages